KtorReadKeyValuesRepoClient

class KtorReadKeyValuesRepoClient<Key, Value>(    baseUrl: String,     httpClient: <ERROR CLASS>,     contentType: <ERROR CLASS>,     paginationResultValuesTypeInfo: <ERROR CLASS>,     paginationResultKeysTypeInfo: <ERROR CLASS>,     keySerializer: suspend (Key) -> String,     valueSerializer: suspend (Value) -> String) : ReadKeyValuesRepo<Key, Value>

Constructors

Link copied to clipboard
fun <Key, Value> KtorReadKeyValuesRepoClient(    baseUrl: String,     httpClient: <ERROR CLASS>,     contentType: <ERROR CLASS>,     paginationResultValuesTypeInfo: <ERROR CLASS>,     paginationResultKeysTypeInfo: <ERROR CLASS>,     keySerializer: suspend (Key) -> String,     valueSerializer: suspend (Value) -> String)

Functions

Link copied to clipboard
open suspend override fun contains(k: Key): Boolean
open suspend override fun contains(k: Key, v: Value): Boolean
Link copied to clipboard
open suspend override fun count(): Long
open suspend override fun count(k: Key): Long
Link copied to clipboard
open suspend override fun get(    k: Key,     pagination: Pagination,     reversed: Boolean): PaginationResult<Value>
Link copied to clipboard
open suspend fun getAll(reverseLists: Boolean = false): Map<Key, List<Value>>

WARNING!!! THIS METHOD PROBABLY IS NOT EFFICIENT, USE WITH CAUTION

open suspend fun getAll(k: Key, reversed: Boolean = false): List<Value>
Link copied to clipboard
open suspend override fun keys(pagination: Pagination, reversed: Boolean): PaginationResult<Key>
open suspend override fun keys(    v: Value,     pagination: Pagination,     reversed: Boolean): PaginationResult<Key>